summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(system)/menu-list/page.tsx
blob: 79923397a4e256627618a29a4a471bc0d13886bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { MenuTreeManager } from "@/lib/menu-v2/components/menu-tree-manager";

interface PageProps {
  params: Promise<{ lng: string }>;
}

export default async function MenuV2Page({ params }: PageProps) {
  const { lng } = await params;
  
  return (
    <div className="container mx-auto py-6 space-y-6">
      <div>
        <h1 className="text-2xl font-bold tracking-tight">Menu Management</h1>
      </div>
      
      <MenuTreeManager initialDomain="evcp" />
    </div>
  );
}